home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / vealbest.zip / README.CDV < prev    next >
Text File  |  1988-05-10  |  997b  |  24 lines

  1.  
  2. All the documentation for my utilities is contained in the .COM file named
  3. CDVDOC.COM.
  4.  
  5. If you type CDVDOC <ENTER>, you'll be greeted by a notice then after pressing
  6. any key, you will see a menu where you can select the program you want
  7. information about.  If you type CDVDOC xx <ENTER> (where xx is the name of the 
  8. program you want information about) you will bypass the notice and receive 
  9. just the information about the selected program.
  10.  
  11. Most of these programs can now be used in batch files by using the ERRORLEVEL
  12. function.  If the program was successful it sets an ERRORLEVEL of 0 when it
  13. ends.  If it was not successful, it sets an ERRORLEVEL of 255 and then ends.
  14. You can test for these by inclulding a couple of lines like these below in your
  15. batch files:
  16.  
  17.          PROGRAM NAME (Where PROGRAM NAME is one of my programs)
  18.          IF ERRORLEVEL 255 GOTO ABORT
  19.          IF ERRORLEVEL 0 GOTO OK
  20.          
  21. Feel free to share these programs with others.
  22.  
  23.             Craig D. Veal
  24.